summaryrefslogtreecommitdiff
path: root/src/pages/[locale]
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-09-20 21:10:17 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-09-20 21:10:17 +0100
commitea86a790ee23433509b292c46fd517407153c59c (patch)
tree29a54fcea30b657300ece1079df96d6fb35f599e /src/pages/[locale]
parentc24f646daf9a503531baea046a962f2fd0478a8e (diff)
Adds description to Lallans gallery page
Diffstat (limited to 'src/pages/[locale]')
-rw-r--r--src/pages/[locale]/furthsettins/lallans/index.astro7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pages/[locale]/furthsettins/lallans/index.astro b/src/pages/[locale]/furthsettins/lallans/index.astro
index 1bcfe47..61f31ec 100644
--- a/src/pages/[locale]/furthsettins/lallans/index.astro
+++ b/src/pages/[locale]/furthsettins/lallans/index.astro
@@ -2,7 +2,7 @@
import Page from '$layouts/Page.astro';
import localeStaticPaths from '$lib/localeStaticPaths';
import translate from '$i18n/translate';
-import tFurthsettins from '$i18n/translations/pages/furthsettins';
+import tPage from '$i18n/translations/pages/lallansGallery';
import type Locale from '$types/Locale';
import LallansIssuesGallery from '$components/LallansIssuesGallery.astro';
@@ -14,9 +14,10 @@ const locale = Astro.params.locale as Locale;
const t = translate(locale);
---
-<Page title={t(tFurthsettins, { key: 'title' })}>
+<Page title={t(tPage, { key: 'title' })}>
<section>
- <h1>Lallans</h1>
+ <h1>{t(tPage, { key: 'title' })}</h1>
+ <p>{t(tPage, { key: 'about-lallans' })}</p>
<LallansIssuesGallery />
</section>
</Page>